-
Notifications
You must be signed in to change notification settings - Fork 274
Adds capability to send new context commands to AB groups #5206
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| console.log("finkscommand") | ||
| console.log(this.highlightCommand) | ||
| console.log("end") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| console.log("finkscommand") | |
| console.log(this.highlightCommand) | |
| console.log("end") |
| $isCodeScanAvailable, // whether /scan is available | ||
| $isCodeTestAvailable // whether /test is available | ||
| $isCodeTestAvailable, // whether /test is available | ||
| ${jacksonObjectMapper().writeValueAsString(highlightCommand)} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you bump the jacksonObjectMapper() to the companion object as a private val so it can be reused?
| listOf( | ||
| FeatureEvaluation.builder() | ||
| .feature(CodeWhispererFeatureConfigService.CUSTOMIZATION_ARN_OVERRIDE_NAME) | ||
| .feature("customizationArnOverride") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
revert?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All of the other feature consts were made private so moved this to private which required the hardcoded value
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i feel it's not necessary to make the experiemtn names private tho, we should be good as long as they are const.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it's easier to restructure and refactor featureConfigService to simply use enum as experiment, but it's not blocker for the PR
e0de036 to
d477438
Compare
d477438 to
8af14d2
Compare
Add the ability to send a new command that will appear when a user types @ in the chat window
Add the ability to send a new command that will appear when a user types @ in the chat window
Add the ability to send a new command that will appear when a user types @ in the chat window
Types of changes
Checklist
License
I confirm that my contribution is made under the terms of the Apache 2.0 license.